home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / filezap / filezap_protos.h < prev    next >
C/C++ Source or Header  |  1996-01-19  |  959b  |  54 lines

  1. /* Prototypes for functions defined in
  2. filezap.c
  3.  */
  4.  
  5. extern struct IntuitionBase * IntuitionBase;
  6.  
  7. extern int phycurx;
  8.  
  9. extern int phycury;
  10.  
  11. extern int posconv[16];
  12.  
  13. int main(int argc,
  14.          char ** argv);
  15.  
  16. int display_record(int fp,
  17.                    char (* secbuf)[16],
  18.                    int cursec,
  19.                    int finsec,
  20.                    int eof);
  21.  
  22. int locate(int fp,
  23.            int x,
  24.            int y);
  25.  
  26. int hexconv(unsigned char * result,
  27.             int byte);
  28.  
  29. int prstr(int wtfp,
  30.           int posx,
  31.           int posy,
  32.           char * string);
  33.  
  34. int movecur(int wtfp,
  35.             char (* secbuf)[16],
  36.             int deltax,
  37.             int deltay,
  38.             int eof);
  39.  
  40. int edit_window(int wtfp,
  41.                 char (* secbuf)[16],
  42.                 int eof,
  43.                 int hex);
  44.  
  45. int hexfetch(int wtfp);
  46.  
  47. int fixpos(int wtfp,
  48.            int eof,
  49.            int deltax,
  50.            int deltay);
  51.  
  52. int valid_display(int byte);
  53.  
  54.